home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / e88420.arc / RUN-ME.BAT < prev    next >
DOS Batch File  |  1988-01-12  |  1KB  |  46 lines

  1. ECHO off
  2. CLS
  3. TYPE startup.txt
  4. ECHO Do you want to print a copy of the instructions? (Y/N)
  5. YN
  6. IF ERRORLEVEL 1 GOTO L0
  7. ECHO Printing instruction file ...
  8. COPY STARTUP.TXT PRN
  9. :L0
  10. ECHO Do you want to run E8M.EXE and produce the editor now? (Y/N)
  11. YN
  12. IF ERRORLEVEL 1 GOTO L1
  13. E8M.EXE
  14. CLS
  15. :L1
  16. ECHO Would you like to print the E88.DOC file now? (Y/N)
  17. YN
  18. IF ERRORLEVEL 1 GOTO L4
  19. CLS
  20. ECHO The .DOC file may be printed either full sized or compressed (Epson com-
  21. ECHO patible printers only) to fit in small (IBM type) notebook.
  22. REM
  23. ECHO Would you like a full sized printout? (Y/N)
  24. YN
  25. IF ERRORLEVEL 1 GOTO L3
  26. :L2
  27. ECHO Printing .DOC file ...
  28. COPY E88.DOC PRN
  29. GOTO L4
  30. :L3
  31. COPY COMPRESS.CTL PRN
  32. GOTO L2
  33. :L4
  34. ECHO Would you like to print a summary of changes made in E88 ver. 4.20? (Y/N)
  35. YN
  36. IF ERRORLEVEL 1 GOTO L5
  37. COPY CHANGES.TXT PRN
  38. :L5
  39. ECHO -------------------------------------------------------------------------
  40. ECHO * W A R N I N G *      For users updating to the new version.
  41. ECHO You MUST erase all existing E88SETUP.DEF and .PGR files.  The older files
  42. ECHO are not compatible with E88 ver. 4.20 and will cause the program to act
  43. ECHO abnormally.  Although this is not dangerous, erasing these files now will
  44. ECHO save you some confusion.  Sorry for the inconvenience.
  45. ECHO                     --- Batch file complete ---
  46.